home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
language
/
glisp.zoo
/
FIB1.GL
< prev
next >
Wrap
Lisp/Scheme
|
1990-08-04
|
133b
|
7 lines
"fib - plus undefined"
(de fib1 (n)
(if (< n 2) 1 (plus (fib1 (- n 1)) (fib1 (- n 2)))))
(setq plus +)
"(fib1 22)"
(fib1 22)